GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Form   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A constructor 0 18 1
1
/**
2
 * This file is part of the O2System Venus UI Framework package.
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 *
7
 * @author         Steeve Andrian Salim
8
 * @copyright      Copyright (c) Steeve Andrian Salim
9
 */
10
// ------------------------------------------------------------------------
11
12
import UserInterface from 'o2system-venus-ui';
13
import $ from 'jquery';
14
import Input from './Components/Input';
15
import Select from './Components/Select';
16
import Validation from './Components/Validation';
17
import Wizard from './Components/Wizard';
18
import Upload from './Components/Upload';
19
import Editor from './Components/Editor';
20
21
/**
22
 * Class Form
23
 */
24
class Form {
25
    constructor() {               
26
        window.$ = window.jQuery = $;
27
        
28
        /**
29
         * Initiate component input
30
         */
31
        this.input = new Input();
32
        
33
        this.select = new Select();
34
35
        this.validation = new Validation();
36
37
        this.wizard = new Wizard();
38
39
        this.upload = new Upload();
40
41
        this.editor = new Editor();
42
    }
43
}
44
45
export default new Form;